[HAVE_TERMIOS _AIX _I386]: Include termios before termio.
authorRichard M. Stallman <rms@gnu.org>
Sun, 30 May 1993 21:32:18 +0000 (21:32 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 30 May 1993 21:32:18 +0000 (21:32 +0000)
src/systty.h

index bb24a7aedb2586e1aaa11da0271d8f8e6a63ed4d..2171a960465924e1238d864d9aed1fdeff334ded 100644 (file)
@@ -30,8 +30,13 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include <fcntl.h>
 #else
 #ifdef HAVE_TERMIOS
+#if defined(_AIX) && defined(_I386)
+#include <termios.h>           /* termios.h needs to be before termio.h */
+#include <termio.h>
+#else
 #include <termio.h>
 #include <termios.h>
+#endif /* _AIX && _I386 */
 #include <fcntl.h>
 #else /* neither HAVE_TERMIO nor HAVE_TERMIOS */
 #ifndef VMS